home *** CD-ROM | disk | FTP | other *** search
/ Nejlepší České Hry 2007 / Nejlepší české hry 2007.iso / hry / Becher Tycoon / scripts / iteracia4.txt < prev   
Text File  |  2006-08-05  |  3KB  |  102 lines

  1. // new buttonstyle nbutt;
  2. new buttonstyle normalbutt;
  3. with normalbutt;
  4.       unPrTexture = 'data/textures/buttonBackg.png';
  5.    //   PrTexture = 'data/textures/buttonBackg.png';
  6.       unPrUV = rect(0,0,230,77);
  7.       PrUV = rect(0,0,230,77);
  8.       unPrSize = makepoint(230,77);
  9.       unPrColor = colorrgba(255,200,180,255);
  10.       unPrOffset = makepoint(0,0);
  11.       PrSize = makepoint(230,77);
  12.       PrColor = colorrgba(200,180,160,255);
  13.       PrOffset = makepoint(2,2);
  14.       transTime = 200;
  15.  
  16.       fontColor = colorrgba(0,0,0,255);
  17.       fontRect = rect(5,5,5,5);
  18.       fontName = 'Freebooter';
  19.       fontwidth = 10;
  20.       fontHeight = 30;
  21.       fontWeight = 3;
  22.       highlite = 1;
  23.       hiSize = makepoint(230,77);
  24.       hiOffset = makepoint(-2,-2);
  25.       hiTrTime = 200;
  26.       hiColor = colorrgba(255,255,255,255);
  27. without;
  28.  
  29.  
  30. //normalbutt = copybs(nbutt);
  31. //normalbutt.name = 'normalbutt';
  32.  
  33. new buttonstyle card_bstyle;
  34. with card_bstyle;
  35.       unPrTexture = 'data/textures/card_backg.png';
  36.       unPrUV = rect(0,0,128,128);
  37.       PrUV = rect(0,0,128,128);
  38.       unPrSize = makepoint(84,84);
  39.       unPrColor = colorrgba(235,235,235,255);
  40.       unPrOffset = makepoint(0,0);
  41.       PrSize = makepoint(84,84);
  42.       PrColor = colorrgba(220,220,220,255);
  43.       PrOffset = makepoint(1,1);
  44.       transTime = 200;
  45.  
  46.       fontColor = colorrgba(0,0,0,255);
  47.       fontRect = rect(5,5,5,5);
  48.       fontName = 'Freebooter';
  49.       fontwidth = 10;
  50.       fontHeight = 30;
  51.       fontWeight = 3;
  52.       highlite = 1;
  53.       hiSize = makepoint(84,84);
  54.       hiOffset = makepoint(-1,-1);
  55.       hiTrTime = 200;
  56.       hiColor = colorrgba(255,255,255,255);
  57. without;
  58. new buttonstyle game_exit;
  59. new buttonstyle game_next;
  60. game_exit = copybs(card_bstyle);
  61.  
  62. with game_exit;    
  63.       unPrTexture = 'data\textures\game_backg.png';
  64.       unPrUV = rect(62,198,123,260);
  65.       PrUV = rect(62,198,123,260);
  66.       unPrSize = makepoint(96,96);
  67.       PrSize = makepoint(96,96);
  68.       hiSize = makepoint(96,96);
  69. without;
  70.  
  71. game_next = copybs(game_exit);
  72. with game_next;
  73.       unPrUV = rect(62,135,123,197);
  74.       PrUV = rect(62,135,123,197);
  75. without;
  76.  
  77. new buttonstyle game_nextcard;
  78. new buttonstyle game_prevcard;
  79.  
  80. game_nextcard = copybs(game_exit);
  81. with game_nextcard;
  82.       unPrUV = rect(0,157,62,177);
  83.       PrUV = rect(0,157,62,177);
  84.       unPrSize = makepoint(62,20);
  85.       PrSize = makepoint(62,20);
  86.       hiSize = makepoint(62,20);
  87.       PrOffset = makepoint(1,0);
  88.       hiOffset = makepoint(-1,0);
  89. without;
  90. game_prevcard = copybs(game_nextcard);
  91. with game_prevcard;
  92.       unPrUV = rect(0,136,62,156);
  93.       PrUV = rect(0,136,62,156);
  94.       unPrSize = makepoint(62,20);
  95.       PrSize = makepoint(62,20);
  96.       hiSize = makepoint(62,20);
  97.       PrOffset = makepoint(-1,0);
  98.       hiOffset = makepoint(1,0);
  99. without;
  100.  
  101. end.
  102.